home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / gas_251.zip / bin_251 / binutils / testsuite / binutils-all / bintest.c next >
C/C++ Source or Header  |  1994-09-29  |  252b  |  31 lines

  1. /*
  2.  * nmtest.c -- this is the C code portion of tests for the GNU binutils
  3.  */
  4.  
  5. main(argc, argv)
  6. int argc;
  7. char *argv[];
  8. {
  9.   char two();
  10.   int one();
  11.  
  12.   one();
  13.   two();
  14. }
  15.  
  16. int
  17. one ()
  18. {
  19.   int i, j;
  20.   j = i++;
  21. }
  22.  
  23. char
  24. two ()
  25. {
  26.   int i, j;
  27.   i = j++;
  28.  
  29. }
  30.  
  31.